.Header{
	background-color: #333399;
	color: #ffffff;
	margin-top: -505px;
	width: 5000px;
	height: 100px;
	font-size: 50px;
}

.Banner img{
	width: 2600px;
	height: 650px;
	margin-bottom: 500px;
	margin-top: -500px;
}

Body{
	background-color: #333399;
}

* {
  padding: 0;
  margin: 0;
}


body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 100vh;
  font-family: Hack, monospace;
  
}

div {
  color: #727272;
  text-align: center;
 }

.menuItems {
  margin-top: -35px;
  margin-left: 400px;
  font-size: 115px;
  color: #ccc;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 1s ease-in-out;
  position: relative;

  &::before {
    content: attr(data-item);
    transition: all 1s ease-in-out;
    color: #8254ff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    overflow: hidden;
  }

  &:hover {
    &::before {
      height: 300%;
    }
  }
}

nav {
  margin: -0px;
  background: #f9f9f9;
  width: 2000px;
  height: 100px;
  padding: 16px;
  .menuItems {
    list-style: none;
    display: flex;

    li {
      margin-left: 200px;
	 

      a {
        text-decoration: none;
        color: #595959;
        font-size: 40px;
        font-weight: 400;
        transition: all 0.5s ease-in-out;
        position: relative;
        text-transform: uppercase;

        &::before {
          content: attr(data-item);
          transition: 0.5s;
          color: #8254ff;
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          width: 0;
          overflow: hidden;
        }

        &:hover {
          &::before {
            width: 100%;
            transition: all 0.5s ease-in-out;
          }
        }
      }
    }
  }
}
}
